home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 4 / CU Amiga Magazine's Super CD-ROM 04 (1996)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1996-11].iso / magazine / psion / games / 3atetr15.lzx / install.bat < prev    next >
DOS Batch File  |  1978-10-14  |  2KB  |  48 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO.
  4. ECHO TETRIS INSTALLER
  5. ECHO ----------------
  6. ECHO.
  7. ECHO This installer works only if you have the PSION RCOM program and RCOM.EXE
  8. ECHO is in your path. This means that you can start RCOM from wherever you are
  9. ECHO on your hard-disk(s).
  10. ECHO.
  11. ECHO If you are not quite sure if you have RCOM on your path, answer N to the
  12. ECHO following question and, when back to the DOS, try to write RCOM and then
  13. ECHO press the enter key. If you succeed in starting RCOM this way, you can
  14. ECHO then restart this batch file and answer Y to the following question.
  15. ECHO.
  16. ECHO If you do not have RCOM but MCLINK, please anwser no to the following
  17. ECHO question and read the TETRIS.DOC file for the instructions of where to
  18. ECHO copy the Tetris files.
  19. ECHO.
  20. ECHO If you have RCOM but it is out of your path, normally start RCOM, then
  21. ECHO start the INSTALL.SCR batch file from inside RCOM.
  22. ECHO.
  23. CHOICE.COM /C:YN "Are you quite sure that RCOM is in your path "
  24. IF ERRORLEVEL 2 GOTO END
  25.  
  26. CLS
  27. ECHO.
  28. ECHO TETRIS INSTALLER
  29. ECHO ----------------
  30. ECHO.
  31. ECHO Please press the letter of the drive you wish to install Tetris to.
  32. ECHO.
  33. ECHO Available choices:
  34. ECHO                     A     To install to SSD A: (the LEFT one)
  35. ECHO                     B     To install to SSD A: (the RIGHT one)
  36. ECHO                     M     To install to Internal RAM Disk
  37. ECHO.
  38. ECHO                     Q     TO QUIT INSTALLER
  39. ECHO.
  40. CHOICE.COM /C:ABMQ /N "Selected drive: "
  41. CLS
  42. IF ERRORLEVEL 4 GOTO END
  43. IF ERRORLEVEL 3 RCOM /C INSTALL.SCR M:
  44. IF ERRORLEVEL 2 RCOM /C INSTALL.SCR B:
  45. IF ERRORLEVEL 1 RCOM /C INSTALL.SCR A:
  46.  
  47. :END
  48.